home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / ncursesw5-config < prev    next >
Text File  |  2009-10-12  |  5KB  |  167 lines

  1. #!/bin/sh
  2. # $Id: ncurses-config.in,v 1.23 2009/03/14 19:20:57 Charles.Wilson Exp $
  3. ##############################################################################
  4. # Copyright (c) 2006-2007,2009 Free Software Foundation, Inc.                #
  5. #                                                                            #
  6. # Permission is hereby granted, free of charge, to any person obtaining a    #
  7. # copy of this software and associated documentation files (the "Software"), #
  8. # to deal in the Software without restriction, including without limitation  #
  9. # the rights to use, copy, modify, merge, publish, distribute, distribute    #
  10. # with modifications, sublicense, and/or sell copies of the Software, and to #
  11. # permit persons to whom the Software is furnished to do so, subject to the  #
  12. # following conditions:                                                      #
  13. #                                                                            #
  14. # The above copyright notice and this permission notice shall be included in #
  15. # all copies or substantial portions of the Software.                        #
  16. #                                                                            #
  17. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
  18. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
  19. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
  20. # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
  21. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
  22. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
  23. # DEALINGS IN THE SOFTWARE.                                                  #
  24. #                                                                            #
  25. # Except as contained in this notice, the name(s) of the above copyright     #
  26. # holders shall not be used in advertising or otherwise to promote the sale, #
  27. # use or other dealings in this Software without prior written               #
  28. # authorization.                                                             #
  29. ##############################################################################
  30. #
  31. # Author: Thomas E. Dickey, 2006-on
  32.  
  33. prefix="/usr"
  34. exec_prefix="${prefix}"
  35.  
  36. bindir="${exec_prefix}/bin"
  37. includedir="${prefix}/include/ncursesw"
  38. libdir="${exec_prefix}/lib"
  39. datadir="${prefix}/share"
  40. mandir="${datadir}/man"
  41.  
  42. THIS="ncursesw"
  43. TINFO_LIB="ncursesw"
  44.  
  45. LANG=C;        export LANG
  46. LANGUAGE=C;    export LANGUAGE
  47. LC_ALL=C;    export LC_ALL
  48. LC_CTYPE=C;    export LC_CTYPE
  49.  
  50. # with --disable-overwrite, we installed into a subdirectory, but transformed
  51. # the headers to include like this:
  52. #    <ncursesw/curses.h>
  53. if test xno = xno ; then
  54.     case $includedir in
  55.     $prefix/include/ncursesw)
  56.         includedir=`echo "$includedir" | sed -e 's,/[^/]*$,,'`
  57.         ;;
  58.     esac
  59. fi
  60.  
  61. test $# = 0 && exec /bin/sh $0 --error
  62.  
  63. while test $# -gt 0; do
  64.     case "$1" in
  65.     # basic configuration
  66.     --prefix)
  67.         echo "$prefix"
  68.         ;;
  69.     --exec-prefix)
  70.         echo "$exec_prefix"
  71.         ;;
  72.     # compile/link
  73.     --cflags)
  74.         INCS=
  75.         if test "${includedir}" != /usr/include ; then
  76.             INCS="-I${includedir}"
  77.         fi
  78.         if test "xno" = xno ; then
  79.             INCS="$INCS -I${includedir}/${THIS}"
  80.         fi
  81.         sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
  82.             $INCS
  83. ENDECHO
  84.         ;;
  85.     --libs)
  86.         if test ncurses = ncurses ; then
  87.         sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
  88.             -L$libdir  -l${THIS} 
  89. ENDECHO
  90.         else
  91.         sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
  92.             -L$libdir  -l${THIS} -l${TINFO_LIB} 
  93. ENDECHO
  94.         fi
  95.         ;;
  96.     # identification
  97.     --version)
  98.         echo "5.7.20090803"
  99.         ;;
  100.     --abi-version)
  101.         echo "5"
  102.         ;;
  103.     --mouse-version)
  104.         echo "1"
  105.         ;;
  106.     # locations
  107.     --bindir)
  108.         echo "${bindir}"
  109.         ;;
  110.     --datadir)
  111.         echo "${datadir}"
  112.         ;;
  113.     --includedir)
  114.         echo "${includedir}"
  115.         ;;
  116.     --libdir)
  117.         echo "${libdir}"
  118.         ;;
  119.     --mandir)
  120.         echo "${mandir}"
  121.         ;;
  122.     --terminfo)
  123.         echo "/etc/terminfo"
  124.         ;;
  125.     --terminfo-dirs)
  126.         echo "/etc/terminfo:/lib/terminfo:/usr/share/terminfo"
  127.         ;;
  128.     --termpath)
  129.         echo ""
  130.         ;;
  131.     # general info
  132.     --help)
  133.         cat <<ENDHELP
  134. Usage: ${THIS}-config [options]
  135.  
  136. Options:
  137.   --prefix           echos the package-prefix of ${THIS}
  138.   --exec-prefix      echos the executable-prefix of ${THIS}
  139.  
  140.   --cflags           echos the C compiler flags needed to compile with ${THIS}
  141.   --libs             echos the libraries needed to link with ${THIS}
  142.  
  143.   --version          echos the release+patchdate version of ${THIS}
  144.   --abi-version      echos the ABI version of ${THIS}
  145.   --mouse-version    echos the mouse-interface version of ${THIS}
  146.  
  147.   --bindir           echos the directory containing ${THIS} programs
  148.   --datadir          echos the directory containing ${THIS} data
  149.   --includedir       echos the directory containing ${THIS} header files
  150.   --libdir           echos the directory containing ${THIS} libraries
  151.   --mandir           echos the directory containing ${THIS} manpages
  152.   --terminfo         echos the \$TERMINFO terminfo database path
  153.   --terminfo-dirs    echos the \$TERMINFO_DIRS directory list
  154.   --termpath         echos the \$TERMPATH termcap list
  155.  
  156.   --help             prints this message
  157. ENDHELP
  158.         ;;
  159.     --error|*)
  160.         /bin/sh $0 --help 1>&2
  161.         exit 1
  162.         ;;
  163.     esac
  164.     shift
  165. done
  166. # vile:shmode
  167.